home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Protocols / Undoing.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  162 b   |  15 lines  |  [TEXT/CWIE]

  1. // Undoing.cp
  2.  
  3. #ifndef Undoing_h
  4. #include "Undoing.h"
  5. #endif
  6.  
  7. void Undoing::UndoOrRedo()
  8.   {
  9.     if ( CanUndo() )
  10.         Undo();
  11.      else
  12.         if ( CanRedo() )
  13.             Redo();
  14.   }
  15.